home *** CD-ROM | disk | FTP | other *** search
- Here my problem. short example
-
- --text.txt look like this--
- 5
- 8
- --end text
-
- r$="text.txt"
- open in 1,r$ : a=lof(1) : close 1
- reserve as work 16,a
- bload r$,16
- abc=start(16)
- c1=peek(abc) : inc abc : c2=peek(abc)
- print c1 : rem gives the ascii value
- print chr$ : show numer 5
-
- Ok how will do to make amos to understand that i want to threat this
- as a number instead of an ascii value?
-
- Is there anyway to convert that 5 (53) so
- i can use it like this
-
- tal=c1+c2
- print tal : want it to be 13
-
- please help me...
-
-